home *** CD-ROM | disk | FTP | other *** search
/ Mac-Source 1994 July / Mac-Source_July_1994.iso / C and C++ / Utilities / Lightspeed C SKEL fldr / Skel globals.h < prev    next >
Encoding:
C/C++ Source or Header  |  1986-06-17  |  617 b   |  16 lines  |  [TEXT/KAHL]

  1. /*
  2.     Globals (declared)
  3. */
  4. extern    GrafPtr screenport;            /* a port for the whole screen */
  5. extern    WindowPtr mywindow;            /* our one window */
  6. extern    WindowRecord wrecord;        /* storage for window record */
  7. extern    Rect dragrect;                /* Rect to drag within */
  8. extern    Rect growrect;                /* bounds for the growth of the windows */
  9.  
  10. extern    MenuHandle mymenus[lastmenu + 1];/* our menus */
  11.  
  12. extern    EventRecord myevent;
  13. extern    WindowPtr     whichwindow;        /* points to window of mouseDown */
  14. extern    int            windowcode;            /* what mouse was in when event posted */
  15. extern    Boolean     userdone;            /* true when user wants to exit program */
  16.